projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
08e239a
)
* src/emacs-module.c (CHECK_USER_PTR): Fix typo in previous change.
author
Paul Eggert
<eggert@cs.ucla.edu>
Wed, 2 Mar 2016 22:16:08 +0000
(14:16 -0800)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Wed, 2 Mar 2016 22:16:25 +0000
(14:16 -0800)
src/emacs-module.c
patch
|
blob
|
history
diff --git
a/src/emacs-module.c
b/src/emacs-module.c
index 1176ca309f9c9fe97ed25d43af38b6549f70f3af..1fec6d10a999fc4ef6504ffc6cdd9b8892532754 100644
(file)
--- a/
src/emacs-module.c
+++ b/
src/emacs-module.c
@@
-244,7
+244,7
@@
struct module_fun_env
static void
CHECK_USER_PTR (Lisp_Object obj)
{
- CHECK_TYPE (USER_PTRP (obj), Quser_ptrp,
lisp
);
+ CHECK_TYPE (USER_PTRP (obj), Quser_ptrp,
obj
);
}
/* Catch signals and throws only if the code can actually signal or